home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / DirectShow / Misc / SysEnum / SysEnum.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-08  |  1.6 KB  |  56 lines

  1. //------------------------------------------------------------------------------
  2. // File: SysEnum.h
  3. //
  4. // Desc: DirectShow sample code - main header file for the SysEnum application.
  5. //
  6. // Copyright (c) 2000-2001 Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8.  
  9.  
  10. #if !defined(AFX_SYSENUM_H__19FC7D3C_E963_41C9_AA3F_1330728D4F41__INCLUDED_)
  11. #define AFX_SYSENUM_H__19FC7D3C_E963_41C9_AA3F_1330728D4F41__INCLUDED_
  12.  
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16.  
  17. #ifndef __AFXWIN_H__
  18.     #error include 'stdafx.h' before including this file for PCH
  19. #endif
  20.  
  21. #include "resource.h"        // main symbols
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CSysEnumApp:
  25. // See SysEnum.cpp for the implementation of this class
  26. //
  27.  
  28. class CSysEnumApp : public CWinApp
  29. {
  30. public:
  31.     CSysEnumApp();
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CSysEnumApp)
  36.     public:
  37.     virtual BOOL InitInstance();
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41.  
  42.     //{{AFX_MSG(CSysEnumApp)
  43.         // NOTE - the ClassWizard will add and remove member functions here.
  44.         //    DO NOT EDIT what you see in these blocks of generated code !
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54.  
  55. #endif // !defined(AFX_SYSENUM_H__19FC7D3C_E963_41C9_AA3F_1330728D4F41__INCLUDED_)
  56.